Mysterious database root triggers

If I run this simple code:
Trigger t
for t in database do print name t "\n"

...I get:
dynamic 0
dynamic 1

...no matter what database I am in (both v8.3 and v9.3). Adding other trigger parameters to this code tells me that these triggers' kind is dynamic, and their scope is 'root folder.' There seems to be no DXL behind them that I can see, as dxl t provides no data. Does anyone know what these triggers are for?

Cheers,
TomY
Thosicus - Wed Mar 21 19:11:19 EDT 2012

Re: Mysterious database root triggers
llandale - Thu Mar 22 12:11:04 EDT 2012

These are the post-drag and post-drop object triggers, which are associated with Discussions.

You never see the DXL for dynamic (nor built-in) Triggers, nothing special about these.

-Louie

Re: Mysterious database root triggers
llandale - Thu Mar 22 13:25:14 EDT 2012

Incidentally, dynamic (and built-in) Triggers are not "in" the database, they are installed only on your client. Module dynamic end when the module closes, likewise these triggers are "installed" when you start your client here:
  • lib\dxl\utils\defaultDragTrigger.inc
  • lib\dxl\utils\defaultDropTrigger.inc

-Louie